home *** CD-ROM | disk | FTP | other *** search
/ Aminet 34 / Aminet 34 (2000)(Schatztruhe)[!][Dec 1999].iso / Aminet / dev / c / PMM.lha / PMM / Developer / FD / example_lib.fd < prev    next >
Encoding:
Text File  |  1994-09-20  |  1.1 KB  |  42 lines

  1. **
  2. *******************************************************************************
  3. **
  4. ** This file is part of the MegaConvert distribution. It may not be changed
  5. ** and/or (re-)distributed under any means that do not preserve the MegaConvert
  6. ** license.
  7. **
  8. *******************************************************************************
  9. **
  10. ** We define a library base name (should begin with »_«, should end with
  11. ** »Base«) ..
  12. **
  13. ##base _ExampleBase
  14. **
  15. ** We define the LVO to the first function (positive; always 30) ..
  16. **
  17. ##bias 30
  18. **
  19. ** The following are public functions, which means you are free to use them.
  20. **
  21. ##public
  22. **
  23. ** Now the functions ..
  24. **
  25. ExampleFunction1(Parameter1,Parameter2)(a0,a1)
  26. ExampleFunction2(Parameter1,Parameter2,Parameter3)(a0,a1,d0)
  27. **
  28. ** Now some private/reserved/obsolete functions follow. You mustn't use them
  29. ** (with AmigaE you can't) !!
  30. ** NOTE: better prefix private functions with »Private_« or so !
  31. **
  32. ##private
  33. **
  34. ** Now the functions ..
  35. **
  36. Private_ExampleFunction3(Parameter1,Parameter2)(a0,a1)
  37. Private_ExampleFunction4(Parameter1,Parameter2,Parameter3)(a0,a1,d0)
  38. **
  39. ** Now this is this file's end ..
  40. **
  41. ##end
  42.